UCF STIG Viewer Logo

The SMTP service must not use .forward files.


Overview

Finding ID Version Rule ID IA Controls Severity
V-88549 VROM-SL-000600 SV-99199r1_rule Medium
Description
The .forward file allows users to automatically forward mail to another system. Use of .forward files could allow the unauthorized forwarding of mail and could potentially create mail loops that could degrade system performance.
STIG Date
VMware vRealize Operations Manager 6.x SLES Security Technical Implementation Guide 2018-10-11

Details

Check Text ( C-88241r1_chk )
Check forwarding from sendmail:

# grep "0 ForwardPath" /etc/sendmail.cf

If the entry contains a file path and is not commented out, this is a finding.
Fix Text (F-95291r1_fix)
Disable forwarding for sendmail and remove ".forward" files from the system:

Remove all ".forward" files on the system.

# find / -name .forward -delete

Use the following command to disable forwarding:

# sed -i "s/O ForwardPath/#O ForwardPath/" /etc/sendmail.cf

Restart the sendmail service:

# service sendmail restart